home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / SYMBOL / Symbol Processors / Shift / symbol-shift < prev   
Text File  |  1998-10-23  |  396b  |  9 lines

  1. symbol-shift value symbol-pattern
  2.  
  3. Moves the symbols in symbol-pattern back and forth depending on the value. If it is positive, the symbols are moved forward, and the first symbol is replaced with the rest symbol. If value is negative, the symbols are moved backward. Use this to create an anacrucis or upbeat start.
  4.  
  5. (symbol-shift 1 '(a b c))
  6. --> (= a b)
  7.  
  8. (symbol-shift -1 '(a b c))
  9. --> (b c =)